home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / midaswww-1.0 / SGMLFormattedText.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-16  |  1.3 KB  |  43 lines

  1. /*==================================================================*/
  2. /*                                                                  */
  3. /* SGMLFormattedTextObject                                          */
  4. /*                                                                  */
  5. /* T.Johnson - (TonyJ@Slacvx.Slac.Stanford.Edu)           June.92   */
  6. /*                                                                  */
  7. /* Defines a formatted  text segment for the SGMLText widget         */
  8. /*                                                                  */
  9. /*==================================================================*/
  10.  
  11. #ifndef  SGMLFORMATTEDTEXT_H
  12. #define  SGMLFORMATTEDTEXT_H
  13. #include "SGMLText.h"
  14.  
  15. extern WidgetClass sGMLFormattedTextObjectClass;
  16. typedef struct _SGMLFormattedTextRec  *SGMLFormattedTextObject;
  17.  
  18. #ifdef _NO_PROTO
  19.  
  20. extern Widget  CreateSGMLFormattedText();
  21.  
  22. #else
  23.  
  24. #if defined(__cplusplus) || defined(c_plusplus)
  25. extern "C" {
  26. #endif
  27.  
  28.     extern Widget SGMLCreateFormattedText(Widget parent,
  29.         char *name,
  30.         ArgList al,
  31.         int ac);
  32.  
  33. #if defined(__cplusplus) || defined(c_plusplus)
  34. }
  35. #endif
  36.  
  37. #endif /* _NO_PROTO */
  38.  
  39. #define SGMLIsFormattedText(w)     XtIsSubclass(w,sGMLFormattedTextObjectClass)
  40.  
  41. #endif SGMLFORMATTEDTEXT_H
  42.  
  43.